home *** CD-ROM | disk | FTP | other *** search
/ Aminet 44 / Aminet 44 (2001)(GTI - Schatztruhe)[!][Aug 2001].iso / Aminet / misc / math / YACAS.lha / CHANGES next >
Text File  |  2001-05-24  |  4KB  |  73 lines

  1.  
  2.                  Release of version 1.0.47 (May 20th 2001)
  3.  
  4.      * initial texmacs support.
  5.      * Jitse Niesen greatly improved the parts of the manual on
  6.        variables and on input/output.
  7.      * Bug fix in localrules (didn't work on more complex input,
  8.        because it didn't check the leading function type!)
  9.      * Bug fix : loading of files on Windows was broken. The Windows
  10.        client didn't handle Unix-style end-of-lines too well.
  11.      * Renamed TryRetract to Retract (Suggested by Jitse).
  12.      * Put NewLine and Space in the scripts as opposed to in the Yacas
  13.        kernel (Suggested by Jitse).
  14.      * Jitse added one-liner descriptions for functions in the
  15.        documentation.
  16.      * latex form in texmacs.
  17.      * Greatly improved CanProve, thanks to Vladimir.
  18.      * Initial version of Berlekamp factoring.
  19.      * changed all the scripts so they have the extension .ys.
  20.      * proteusdebugger: an initial version of a debugger for yacas.
  21.      * Change to configure script to support compiling under cygwin,
  22.        with plugin support.
  23.      * Bug fix to multiplying complex numbers with lists.
  24.      * Made Content and PrimitivePart respond more nicely to
  25.        polynomials with rational coefficients.
  26.      * Small improvement to the debugger: it now also steps to
  27.        non-expandable lines when you use the step buttons.
  28.      * numbers with a minus sign now parsed into negative numbers, as
  29.        opposed to a function -(number)
  30.      * configurable simplification of inequalities in the logic code.
  31.      * Split out the tests into many test scripts in directory tests/
  32.  
  33.                 Release of version 1.0.46 (April 10th 2001)
  34.  
  35.      * Bug fix: N(Sin(a)) returning 0 (also a problem with Cos). The
  36.        problem was due to the system trying to do a SinMap, where Pi
  37.        becomes a number, and the converting to a univariate polynomial
  38.        in Pi screws up.
  39.      * better support for mapping numeric arguments of Cos back to the
  40.        0 to Pi range.
  41.      * made rules that are always true a little faster.
  42.      * fixed bug with Gcd when passing floating point numbers.
  43.        Reported by Fredrik Noring.
  44.      * Small change to proteus (Mark).
  45.      * Added example "MinimumSpanningTree".
  46.      * Bug fix: interpreter crashed if a function refers to another
  47.        function which gets redefined.
  48.      * Bug fix: Limit(x,Infinity) going wrong on -Infinity/Infinity.
  49.      * added Integrate(var)(function) which returns the antiderivative
  50.        of a function. Suggested by Christian Obrecht.
  51.      * Fixed "gnuplot" (broken due to the changed functionality of
  52.        N(..) ).
  53.      * Fixed bug: CanProve(P Or (Not P And Not Q)) returned the wrong
  54.        answer. Reported by Vladimir Livshits.
  55.      * Fixed bug: Cos(0) wasn't evaluating to 0 any more.
  56.      * improvements to documentation.
  57.      * Derivatives now better threaded.
  58.      * fixed compiler warnings: anumber.cpp under Windows compilation
  59.        (reported by Vladimir), Proteus warnings under Debian (Reported
  60.        by Gopal).
  61.      * removed -g option for compilation. Made executable seriously
  62.        smaller.
  63.      * Much improved Limit, thanks to Christian Obrecht.
  64.      * Small improvements to Proteus.
  65.      * pretty printing of vectors and matrices.
  66.      * Limits can now deal with direction (limit from Left or Right).
  67.      * PSolve for 3rd degree fixed by Robert.
  68.      * Added operators /: and /:: .
  69.      * Incorporated the changes for complex numbers Christian sent in.
  70.        Arg now implemented correctly.
  71.      * better numeric Ln and ArcTan.
  72.      * functions that are not defined yet are now returned with their
  73.        arguments evaluated. Eg f(2+3) returns f(5) in stead of f(2+3).